home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000293_news@columbia.edu_Fri Jan 27 14:27:00 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09551
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 27 Jan 1995 09:27:08 -0500
  3. Received: by apakabar.cc.columbia.edu id AA29531
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 27 Jan 1995 09:27:06 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Help With MSK 3.14 And APC
  9. Date: 27 Jan 1995 14:27:00 GMT
  10. Organization: Columbia University
  11. Lines: 34
  12. Message-Id: <3gavrk$sq9@apakabar.cc.columbia.edu>
  13. References: <3g3jfo$4rr@chopin.udel.edu> <3g5n75$a1g@chopin.udel.edu> <3g5ogv$glp@apakabar.cc.columbia.edu> <3g5uor$j8f@chopin.udel.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3g5uor$j8f@chopin.udel.edu>,
  18. Jerry Alexandratos <darkstar@chopin.udel.edu> wrote:
  19. >...
  20. >I didn't mean that the pcsend/get macros don't work at all.  They do. 
  21. >I should know, I use them almost everyday!  What I meant was that there
  22. >was no way to do the same functionality using APC with MSK on the local
  23. >machine and CK on the host because there was no terminal emulation
  24. >present (since I would have to escape back to the command line to
  25. >execute them).
  26. >
  27. Maybe this will help.
  28.  
  29. There are different approaches to automating things.  If you want the
  30. client (the "local" Kermit, the Kermit that is running on the PC on your
  31. desk, or whatever) to control things, then you do this with a script
  32. program using INPUT and OUTPUT and related commands to send commands to
  33. the host and read and act on its responses.
  34.  
  35. If you want the host to control things, then your local Kermit must be
  36. in terminal mode, and the host sends commands to it embedded in APC
  37. sequences.
  38.  
  39. A third configuration has the host Kermit program in server mode, and
  40. the local Kermit controlling it with SEND, GET, REMOTE, and FINISH
  41. commands.  A fourth has the local Kermit in server mode and the remote
  42. one controlling it in the same way.
  43.  
  44. Other combinations can be imagined, e.g. both Kermit programs running
  45. scripts at the same time that interact with each other, but the main trick
  46. is in appreciating that we don't have a "modeless" situation here, so when
  47. automating things, the controlling script must be conscious of what mode
  48. the controlled entity is in.
  49.  
  50. - Frank